summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2024-02-06 15:48:04 +0100
committerFearlessTobi <thm.frey@gmail.com>2024-02-06 15:48:04 +0100
commitc0a383d9601178c5be8a3128c9cd7155001dcf4d (patch)
tree166fceed5be9033b4a24f6bd51172d0f53c094ed
parentcitra_qt/configure_ui: Show country of language in the combobox (diff)
downloadyuzu-c0a383d9601178c5be8a3128c9cd7155001dcf4d.tar
yuzu-c0a383d9601178c5be8a3128c9cd7155001dcf4d.tar.gz
yuzu-c0a383d9601178c5be8a3128c9cd7155001dcf4d.tar.bz2
yuzu-c0a383d9601178c5be8a3128c9cd7155001dcf4d.tar.lz
yuzu-c0a383d9601178c5be8a3128c9cd7155001dcf4d.tar.xz
yuzu-c0a383d9601178c5be8a3128c9cd7155001dcf4d.tar.zst
yuzu-c0a383d9601178c5be8a3128c9cd7155001dcf4d.zip
-rw-r--r--src/web_service/web_backend.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/web_service/web_backend.cpp b/src/web_service/web_backend.cpp
index f41d8af0e..fdf3ac846 100644
--- a/src/web_service/web_backend.cpp
+++ b/src/web_service/web_backend.cpp
@@ -52,7 +52,7 @@ struct Client::Impl {
if (jwt.empty() && !allow_anonymous) {
LOG_ERROR(WebService, "Credentials must be provided for authenticated requests");
- return WebResult{WebResult::Code::CredentialsMissing, "Credentials needed"};
+ return WebResult{WebResult::Code::CredentialsMissing, "Credentials needed", ""};
}
auto result = GenericRequest(method, path, data, accept, jwt);
@@ -83,7 +83,7 @@ struct Client::Impl {
}
if (!cli->is_valid()) {
LOG_ERROR(WebService, "Invalid URL {}", host + path);
- return WebResult{WebResult::Code::InvalidURL, "Invalid URL"};
+ return WebResult{WebResult::Code::InvalidURL, "Invalid URL", ""};
}
httplib::Headers params;
@@ -114,7 +114,7 @@ struct Client::Impl {
if (!result) {
LOG_ERROR(WebService, "{} to {} returned null", method, host + path);
- return WebResult{WebResult::Code::LibError, "Null response"};
+ return WebResult{WebResult::Code::LibError, "Null response", ""};
}
httplib::Response response = result.value();
@@ -122,20 +122,20 @@ struct Client::Impl {
if (response.status >= 400) {
LOG_ERROR(WebService, "{} to {} returned error status code: {}", method, host + path,
response.status);
- return WebResult{WebResult::Code::HttpError, std::to_string(response.status)};
+ return WebResult{WebResult::Code::HttpError, std::to_string(response.status), ""};
}
auto content_type = response.headers.find("content-type");
if (content_type == response.headers.end()) {
LOG_ERROR(WebService, "{} to {} returned no content", method, host + path);
- return WebResult{WebResult::Code::WrongContent, ""};
+ return WebResult{WebResult::Code::WrongContent, "", ""};
}
if (content_type->second.find(accept) == std::string::npos) {
LOG_ERROR(WebService, "{} to {} returned wrong content: {}", method, host + path,
content_type->second);
- return WebResult{WebResult::Code::WrongContent, "Wrong content"};
+ return WebResult{WebResult::Code::WrongContent, "Wrong content", ""};
}
return WebResult{WebResult::Code::Success, "", response.body};
}